home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 7.st / AIDOCTOR.ARC / AIDOCTOR.LST next >
Encoding:
File List  |  1989-11-09  |  26.0 KB  |  909 lines

  1. ' #############################################################################
  2. ' #############################################################################
  3. ' ######################## A.I. DOCTOR BY RON SCHAEFER MD #####################
  4. ' ################### COPYRIGHT 1990 by ANTIC PUBLISHING INC. #################
  5. ' #############################################################################
  6. ' #############################################################################
  7. Clear
  8. Defnum 5
  9. Path$=Dir$(0)+"\"             !define directory as one program was started in
  10. R%=Xbios(4)                    !test for rez
  11. If R%=0 Then
  12.   Alert 3,"Sorry, the A.I. Doctor works|only in High and Medium|resolutions.",1," OK ",Dummy
  13.   End
  14. Endif
  15. If R%=1 Then                   !medium resolution
  16.   If Not Exist(Path$+"aidoctor.pi2") Then
  17.     Alert 3,"The file AIDOCTOR.PI2 must be|in the same folder as|AIDOCTOR.PRG",1," OK ",Dummy
  18.     End
  19.   Endif
  20.   Picname$=Path$+"aidoctor.pi2"         !name of title screen degas picture
  21.   X%=1
  22. Else                            !only one left is high resolution
  23.   If Not Exist(Path$+"aidoctor.pi3") Then
  24.     Alert 3,"The file AIDOCTOR.PI3 must be|in the same folder as|AIDOCTOR.PRG",1," OK ",Dummy
  25.     End
  26.   Endif
  27.   X%=2
  28.   F%=7
  29.   Picname$=Path$+"aidoctor.pi3"       !hi rez title screen picture
  30. Endif
  31. Dim Mstrip$(50),Cad$(2)
  32. Dim Spalette%(16,3)
  33. Dim Rule$(200,2)
  34. Num_dim=200
  35. On Break Gosub Cleanup
  36. @Make_sprite                   !make a sprite for dialog box
  37. @Save_pal                      !save the current palette
  38. @Degas                         !display the degas picture
  39. ' ------------------------------ READ MENU STRIP DATA --------------------------
  40. Restore Strip_data
  41. For I%=0 To 15
  42.   Read Mstrip$(I%)
  43. Next I%
  44. ' ----------------------------- PROGRAM CONTROL LOOP ---------------------------
  45. Menu Mstrip$()
  46. Menu 12,2
  47. Sget Title$                       !save picture screen
  48. @Disclaim                         !disclaimer dialog box
  49. Sput Title$                       !display saved screen
  50. On Menu  Gosub Menu_handler
  51. On Menu Key Gosub Menu_handler
  52. Do
  53.   On Menu
  54.   Exit If All_done!
  55. Loop
  56. @Restorepal                        !restore palette to original colors
  57. Edit
  58. ' ----------------------------- END PROGRAM LOOP -------------------------------
  59. Procedure Menu_handler
  60.   If Mstrip$(Menu(0))="  QUIT      Q " Or Menu(14)=4096
  61.     Menu Off
  62.     Alert 3,"|Do you really want to quit?",1," QUIT | STAY ",Qs
  63.     @Ds_2(5,5)             !sound routine for clicking noise
  64.     If Qs=1 Then
  65.       @Closing_box
  66.       @Cleanup
  67.     Endif
  68.   Endif
  69.   If Mstrip$(Menu(0))="  About The Doctor "         !about dialog box
  70.     @Ds_2(5,5)
  71.     Openw 0
  72.     @About_doctor
  73.     @Ds_2(5,5)
  74.     Graphmode 1
  75.     Closew 0
  76.     Menu Off
  77.     Sput Title$
  78.   Endif
  79.   If Mstrip$(Menu(0))="  Load File L " Or Menu(14)=9728
  80.     Menu Off                     !menu(14)=9728 tests for a alternate L
  81.     @Ds_2(5,5)
  82.     @R_data
  83.     Sput Title$
  84.     @Ds_1(4,4)
  85.     Pause 4
  86.     @Ds_1(6,4)
  87.     Pause 4
  88.     @Ds_1(5,4)
  89.     Pause 4
  90.   Endif
  91.   If Mstrip$(Menu(0))="  Diagnosis D " Or Menu(14)=8192
  92.     @Do_dx
  93.     Menu 13,2                        !kludgey bug fix
  94.     Menu Off
  95.     Sput Title$
  96.   Endif
  97.   If Mstrip$(Menu(0))="  HELP " Or Menu(14)=25088
  98.     @Do_help
  99.     Menu Off
  100.     Sput Title$
  101.     If Pushed=2 Then
  102.       @Disclaim
  103.       Menu Off
  104.       Sput Title$
  105.     Endif
  106.   Endif
  107. Return
  108. ' ------------------------- DO THE DIAGNOSIS -----------------------
  109. Procedure Do_dx
  110.   ' ------------------- DEFFINITIONS OF VARIABLES ------------------
  111.   ' Rule$()= text for rules or symptoms
  112.   ' Illness$()=  name of illnesses
  113.   ' Il()=  element of relavent (il_cnt,il_sub,1-3) sx, yes prob, no prob
  114.   ' Il_sub()=  number of elements per illness
  115.   ' Il_p()= prior prob of an illness
  116.   ' cnt_rl = number of rules  cnt_il% = number of illnesses
  117.   ' P(Cnt_il%)= current probability
  118.   ' Rv(Cnt_rl%)= value of each symptom in terms of amount of change p illness
  119.   ' Relevant_sx(Cnt_il%)= list of symptoms still to be asked
  120.   ' Minimum(Cnt_il%)= minimum possibile value which each illness can achieve
  121.   ' Maximum(Cnt_il%)= maximum possibile value which each illness can achieve
  122.   ' Flag(Cnt_rl%)= flag to prevent each question from being asked twice
  123.   '
  124.   Erase P()            ! current probability
  125.   Erase Rv()    ! value of each symptom in terms of amount of change p illness
  126.   Erase Relevant_sx()  ! list of symptoms still to be asked
  127.   Erase Minimum()      ! minimum possible value which each illness can achieve
  128.   Erase Maximum()      ! maximum possible value which each illness can achieve
  129.   Erase Flag()         ! flag to prevent each question from being asked twice
  130.   Erase Bp()           ! bubble sort current probabities
  131.   Dim P(Cnt_il%),Rv(Cnt_rl%),Relevant_sx(Cnt_il%),Maximum(Cnt_il%),Minimum(Cnt_il%),Flag(Cnt_rl%)
  132.   Dim Bp(Cnt_il%)
  133.   ' --------------------------------------------------------------------------
  134.   ' Example of input
  135.   ' Acute Hepatitis  = Illness$()
  136.   ' .001,     8,      .8,   .01,    15,.8,.01,17,.5,.01,42,.5,.01,45,.5,.01,41,.5,.01,999
  137.   ' il_p(),Il(x,y,1),Il(x,y,2),Il(x,y,3)
  138.   ' ---------------------------------------------------------------------------
  139.   Arrayfill Flag(),1
  140.   For N%=1 To Cnt_il%
  141.     P(N%)=Il_p(N%)
  142.   Next N%
  143.   Titlew 1,"  Diagnosis  "             !title for window
  144.   Fullw 1
  145.   Openw 1
  146.   Clearw 1
  147.   Defmouse 2                               !change mouse shape
  148.   For I%=1 To Cnt_il%        !calcuate prior probabilities and the rule values
  149.     P=P(I%)
  150.     For K%=1 To Il_sub(I%)
  151.       Inc Relevant_sx(I%)
  152.       Add Rv(Il(I%,K%,1)),Abs(P*Il(I%,K%,2)/(P*Il(I%,K%,2)+(1-P)*Il(I%,K%,3))-P*(1-Il(I%,K%,2))/(P*(1-Il(I%,K%,2))+(1-P)*(1-Il(I%,K%,3))))
  153.     Next K%
  154.   Next I%
  155.   Another:
  156.   R=0
  157.   Hr=0
  158.   For I%=1 To Cnt_rl%
  159.     If Rv(I%)>R Then               !determine the best question to ask
  160.       '      Print R,Rv(I%),"best question hr=i%=";I%
  161.       R=Rv(I%)
  162.       Hr=I%
  163.     Endif
  164.     Rv(I%)=0
  165.   Next I%
  166.   ' ---------------------- List top four diagnoses at this point ----------
  167.   For I%=1 To Cnt_il%
  168.     Bp(I%)=P(I%)
  169.     Bil$(I%)=Illness$(I%)
  170.   Next I%
  171.   N=Cnt_il%
  172.   For L%=1 To N-(N-4)        ! n-x gives top x numbers
  173.     For I%=1 To N-1
  174.       For J%=I% To I%
  175.         If Bp(J%)>Bp(J%+1) Then
  176.           Swap Bp(J%),Bp(J%+1)
  177.           Swap Bil$(J%),Bil$(J%+1)
  178.         Endif
  179.       Next J%
  180.     Next I%
  181.   Next L%
  182.   Print At(10,1);"The top four most likely diagnoses at this time are"
  183.   For I%=N To N-3 Step -1
  184.     Print Space$(21);Bil$(I%);" with a probability =";Int(Bp(I%)*100);"%"
  185.   Next I%
  186.   ' --------------------------------------------------------------------
  187.   Defmouse 0
  188.   @Dialog(Hr)           !ask the symptom using the symptom dialog box
  189.   Defmouse 2
  190.   If Pushed=-10 Then    !if exit pushed end calculations
  191.     Goto Endit
  192.   Endif
  193.   Flag(Hr)=0
  194.   For I%=1 To Cnt_il%
  195.     For K%=1 To Il_sub(I%)
  196.       If Il(I%,K%,1)<>Hr Or Relevant_sx(I%)=0 Then
  197.         Goto Skip
  198.       Endif
  199.       Dec Relevant_sx(I%)
  200.       P=P(I%)
  201.       Pe=P*Il(I%,K%,2)+(1-P)*Il(I%,K%,3)
  202.       ' ------ determine degree of certainty by dividing PUSHED by 5
  203.       If Pushed>0 Then
  204.         P(I%)=P*(1+(Il(I%,K%,2)/Pe-1)*Pushed/5)
  205.       Endif
  206.       If Pushed<=0 Then
  207.         P(I%)=P*(1+(Il(I%,K%,2)-(1-Il(I%,K%,2))*Pe/(1-Pe))*Pushed/5)
  208.       Endif
  209.       If P(I%)=Int(P(I%)) Then
  210.         Relevant_sx(I%)=0  !definite event no more questions need be asked about this illness
  211.       Endif
  212.       Skip:
  213.     Next K%
  214.   Next I%
  215.   Current_max=0
  216.   Current_max_i=0
  217.   For I%=1 To Cnt_il%
  218.     P_yy=1
  219.     P_yn=1
  220.     P_ny=1
  221.     P_nn=1
  222.     P=P(I%)
  223.     For K%=1 To Il_sub(I%)       !determine new minimum and max probabilities
  224.       If Flag(Il(I%,K%,1))*Relevant_sx(I%)=0 Then
  225.         Goto Skipped
  226.       Endif
  227.       If Il(I%,K%,3)>Il(I%,K%,2) Then
  228.         Il(I%,K%,2)=1-Il(I%,K%,2)
  229.         Il(I%,K%,3)=1-Il(I%,K%,3)
  230.       Endif
  231.       Add Rv(Il(I%,K%,1)),P*Il(I%,K%,2)/(P*Il(I%,K%,2)+(1-P)*Il(I%,K%,3))-P*(1-Il(I%,K%,2))/(P*(1-Il(I%,K%,2))+(1-P)*(1-Il(I%,K%,3)))
  232.       Mul P_yy,Il(I%,K%,2)
  233.       Mul P_yn,Il(I%,K%,3)
  234.       Mul P_ny,(1-Il(I%,K%,2))
  235.       Mul P_nn,(1-Il(I%,K%,3))
  236.       Skipped:
  237.     Next K%
  238.     Maximum(I%)=P*P_yy/(P*P_yy+(1-P)*P_yn)
  239.     Minimum(I%)=P*P_ny/(P*P_ny+(1-P)*P_nn)
  240.     If Maximum(I%)<Il_p(I%) Then
  241.       Relevant_sx(I%)=0
  242.     Endif
  243.     If Minimum(I%)>Current_max Then
  244.       Current_max_i=I%
  245.       Current_max=Minimum(I%)
  246.     Endif
  247.   Next I%
  248.   Max_prob=0
  249.   Max_prob_i=0
  250.   For I%=1 To Cnt_il%
  251.     If P(I%)>Max_prob Then        !find the highest probability
  252.       Max_prob_i=I%
  253.       Max_prob=P(I%)
  254.     Endif
  255.   Next I%
  256.   If Max_prob<0.98 Then             !test to threshhold of probability 98%
  257.     Goto Another
  258.   Endif
  259.   Alert 3,"The best diagnosis is|"+Illness$(Max_prob_i)+"|probability of "+Str$(Int(P(Max_prob_i)*100))+"%",1," wow ",Junk
  260.   Endit:
  261.   @Bubble_sort
  262.   Closew 1
  263. Return
  264. ' ----------------------- BUBBLE SORT ---------------------------
  265. Procedure Bubble_sort
  266.   For I%=1 To Cnt_il%
  267.     Bp(I%)=P(I%)
  268.     Bil$(I%)=Illness$(I%)
  269.   Next I%
  270.   N=Cnt_il%
  271.   For L%=1 To N-(N-20)        ! n-x gives top numbers
  272.     For I%=1 To N-1
  273.       For J%=I% To I%
  274.         If Bp(J%)>Bp(J%+1) Then
  275.           Swap Bp(J%),Bp(J%+1)
  276.           Swap Bil$(J%),Bil$(J%+1)
  277.         Endif
  278.       Next J%
  279.     Next I%
  280.   Next L%
  281.   Clearw 1
  282.   Deftext 3
  283.   Print At(25,1);"--> LIST OF THE TOP 20 DIAGNOSES <--"
  284.   Deftext 1
  285.   Incre%=0
  286.   For I%=N To N-19 Step -1
  287.     Inc Incre%
  288.     Print At(1,1+Incre%);"      ";Incre%;") ";Bil$(I%);" with a probability of "
  289.     Print At(57,1+Incre%);Bp(I%)
  290.   Next I%
  291.   Defmouse 0
  292.   Do
  293.     Exit If Inkey$<>"" Or Mousek>0
  294.   Loop
  295. Return
  296. ' ---------------------------------------------------------------------
  297. Procedure Cleanup
  298.   @Restorepal
  299.   Erase Rule$()          ! rules or symptoms
  300.   Erase Illness$()       ! illnesses
  301.   Erase Il()             ! element of relavent sx, yes prob, no prob
  302.   Erase Il_sub()         ! number of elements per illness
  303.   Erase Il_p()           ! prior prob of an illness
  304.   Menu 12,3
  305.   Edit
  306. Return
  307. ' -----------------------------------------------------------------------
  308. Procedure About_doctor
  309.   I=0
  310.   Inc Modinc
  311.   Deffill 0,2,8
  312.   Pbox 74,39*R%,575,177*R%
  313.   @About_text
  314.   Graphmode 3
  315.   Do                              !create graphics for dialog box
  316.     Mouse Mx,My,Clk
  317.     Exit If (Clk>0 And Mx>172 And Mx<244 And My>153*R% And My<165*R%) Or Inkey$<>""
  318.     Box (I Mod 200)+359,((I Mod 123)+47)*R%,(199-I Mod 200)+359,((122-I Mod 123)+47)*R%
  319.     Add I,Modinc
  320.     Showm
  321.     Pause 1
  322.   Loop
  323.   Pbox 172,153*R%,244,165*R%
  324.   Pause 5
  325.   Mx=0
  326.   My=0
  327. Return
  328. ' ---------------------------------------------------------------------
  329. Procedure About_text
  330.   Graphmode 1
  331.   Color 1
  332.   Box 78,42*R%,569,174*R%
  333.   Box 74,39*R%,575,177*R%
  334.   Box 358,46*R%,559,170*R%
  335.   Box 169,151*R%,246,167*R%
  336.   Box 172,153*R%,244,165*R%
  337.   Deftext 1,0,0,6+F%
  338.   Text 185,162*R%,"CANCEL"
  339.   Graphmode 2
  340.   If R%=1 Then
  341.     Deftext 3,0,0,32
  342.     Text 109,74," A.I. DOCTOR"
  343.   Endif
  344.   Deftext 2,0,0,32
  345.   Text 108,75*R%," A.I. DOCTOR"
  346.   Graphmode 1
  347.   Deftext 1,4,0,6+F%
  348.   Text 130,90*R%,"by Ron Schaefer M.D."
  349.   Deftext 1,0,0,6+F%
  350.   Text 90,99*R%,"(C) 1990 Antic Publishing, Inc."
  351.   Text 130,108*R%,"All Rights Reserved"
  352.   Text 130,120*R%,"Written in GFA BASIC 2.0"
  353.   Text 130,129*R%," "
  354.   Text 130,144*R%,"Free Memory "+Str$(Fre(0))
  355.   Sprite Cad$(1),95,66*R%
  356.   Sprite Cad$(2),310,66*R%
  357. Return
  358. ' ------------- SAVE ORIGINAL COLOR PALETTE -----------------------
  359. Procedure Save_pal
  360.   For Z%=0 To 15
  361.     Dpoke Contrl,26
  362.     Dpoke Contrl+2,0
  363.     Dpoke Contrl+6,2
  364.     Dpoke Intin,Z%
  365.     Dpoke Intin+2,0
  366.     Vdisys
  367.     Spalette%(Z%,0)=Dpeek(Intout+2)
  368.     Spalette%(Z%,1)=Dpeek(Intout+4)
  369.     Spalette%(Z%,2)=Dpeek(Intout+6)
  370.   Next Z%
  371. Return
  372. Procedure Restorepal
  373.   ' --------------------- RESTORES PALETTE -------------------
  374.   For Z%=0 To 15
  375.     Dpoke Contrl,14
  376.     Dpoke Contrl+2,0
  377.     Dpoke Contrl+6,4
  378.     Dpoke Intin,Z%
  379.     Dpoke Intin+2,Spalette%(Z%,0)
  380.     Dpoke Intin+4,Spalette%(Z%,1)
  381.     Dpoke Intin+6,Spalette%(Z%,2)
  382.     Vdisys
  383.   Next Z%
  384. Return
  385. ' ---------------------------------------------------------------------
  386. Procedure Set_colors
  387.   Setcolor 0,0,0,0
  388.   Setcolor 3,7,7,7
  389.   Setcolor 2,0,4,7
  390. Return
  391. ' ---------------------------------------------------------------------------
  392. Procedure Make_sprite
  393.   ' Sprite-Convert data in string
  394.   For N%=1 To 2
  395.     Let Cad$(N%)=Mki$(0)+Mki$(0)
  396.     Let Cad$(N%)=Cad$(N%)+Mki$(0)
  397.     Let Cad$(N%)=Cad$(N%)+Mki$(0)
  398.     Let Cad$(N%)=Cad$(N%)+Mki$(3)
  399.     Restore Sprite_data
  400.     For I%=1 To 16
  401.       Read Foregrnd,Backgrnd
  402.       Let Cad$(N%)=Cad$(N%)+Mki$(Backgrnd)+Mki$(Foregrnd)
  403.     Next I%
  404.   Next N%
  405. Return
  406. ' ----------------------------- SOUND ROUTINES ---------------------------
  407. Procedure Ds_1(Snd,Snd1)
  408.   Sound 1,12,Snd,Snd1
  409.   Wave 1,1,9,6000
  410. Return
  411. Procedure Ds_2(Snd,Snd1)
  412.   Sound 1,12,Snd,Snd1
  413.   Wave 1,1,8,512,5
  414.   Wave 0,0
  415. Return
  416. Procedure Ds_3(Snd,Snd1,Per,Dur)
  417.   Sound 1,2,Snd,Snd1
  418.   Wave 1,1,9,Per,Dur
  419. Return
  420. ' ------------------------- READ IN RX DATA ---------------------------------
  421. Procedure R_data
  422.   Erase Rule$()          ! rules or symptoms
  423.   Erase Illness$()       ! illnesses
  424.   Erase Bil$()           ! bubble sort illnesses
  425.   Erase Il()             ! element of relavent sx, yes prob, no prob
  426.   Erase Il_sub()         ! number of elements per illness
  427.   Erase Il_p()           ! prior prob of an illness
  428.   Dim Rule$(Num_dim,2),Illness$(Num_dim),Il(Num_dim,20,3),Il_sub(Num_dim),Il_p(Num_dim)
  429.   Dim Bil$(Num_dim)
  430.   Do
  431.     Fileselect Path$+"*.DAT","RX.DAT",Rx.dat$
  432.     Exit If Rx.dat$="" Or Rx.dat$<>" "
  433.   Loop
  434.   @Ds_2(5,5)
  435.   If Rx.dat$<>"" Then
  436.     If Exist(Rx.dat$) Then
  437.       Alert 1,"Do you want to list out|the data as it is|read into memory?",3,"Fast|Paging|No",Pk
  438.       If Pk<>3 Then
  439.         Titlew 1,"  Reading the Knowledge Base Rules  "
  440.         Fullw 1
  441.         Openw 1
  442.         Clearw 1
  443.         Print At(1,1);
  444.       Endif
  445.       Open "I",#1,Rx.dat$
  446.       Cnt_rl%=1
  447.       '                ****  READ IN THE SYMPTOMS ****
  448.       Defmouse 2
  449.       Do
  450.         Input #1,A
  451.         If A<>Cnt_rl% And A<>999999999 Then
  452.           Alert 2,"THE QUESTION NUMBERS ARE|OUT OF ORDER.",1," OK | ABORT ",Pk
  453.           If Pk=2 Then
  454.             Goto Abort_read
  455.           Else
  456.             Cnt_rl%=A
  457.           Endif
  458.           Defmouse 2
  459.         Endif
  460.         Exit If A=999999999
  461.         Line Input #1,Rule$(A,1)
  462.         Line Input #1,X$
  463.         If X$<>"." Then
  464.           Rule$(A,2)=X$
  465.         Endif
  466.         Inc Cnt_rl%
  467.       Loop
  468.       If Pk=1 Or Pk=2 Then     ! Print out symptoms
  469.         @Print_sx
  470.       Endif
  471.       '                       ****  READ IN THE ILLNESSES ****
  472.       Cnt_il%=1
  473.       Do
  474.         Input #1,A$
  475.         Exit If A$="THE END"
  476.         Illness$(Cnt_il%)=A$                ! read in illness
  477.         Input #1,Il_p(Cnt_il%)         ! read in illness prior probability
  478.         Cnt_il_sub=0
  479.         Do
  480.           Input #1,A
  481.           Exit If A=999
  482.           Input #1,B
  483.           Input #1,C
  484.           Inc Cnt_il_sub
  485.           Il(Cnt_il%,Cnt_il_sub,1)=A
  486.           Il(Cnt_il%,Cnt_il_sub,2)=B
  487.           Il(Cnt_il%,Cnt_il_sub,3)=C
  488.         Loop
  489.         Il_sub(Cnt_il%)=Cnt_il_sub
  490.         Inc Cnt_il%
  491.       Loop
  492.       Dec Cnt_il%
  493.       If Pk=1 Or Pk=2 Then         ! Print out illnesses
  494.         @Print_il
  495.       Endif
  496.       Menu 12,3                    ! Turn on "Diagnosis" option
  497.       Abort_read:
  498.       Close #1
  499.       Closew 1
  500.       File_ok!=True
  501.     Else
  502.       Alert 1,"Sorry the file|"+Rx.dat$+"|was not found",1," OK ",Junk
  503.     Endif
  504.   Endif
  505.   Defmouse 0
  506. Return
  507. ' ---------------------------- PRINT SYMPTOMS TO SCREEN -----------------
  508. Procedure Print_sx
  509.   Line=0
  510.   Print At(1,1);
  511.   Defmouse 0
  512.   For N=1 To Cnt_rl%-1
  513.     Print N;") ";Rule$(N,1)
  514.     Print "    ";Rule$(N,2)
  515.     Add Line,2
  516.     If Line>18 Then
  517.       If Pk=2 Then
  518.         Do
  519.           Exit If Inkey$<>"" Or Mousek>0
  520.         Loop
  521.         @Ds_2(5,4)
  522.       Endif
  523.       Clearw 1
  524.       Line=0
  525.       Print At(1,1);
  526.     Endif
  527.   Next N
  528.   Defmouse 2
  529. Return
  530. ' ----------------------- PRINT ILLNESSES TO SCREEN --------------------
  531. Procedure Print_il
  532.   Defmouse 0
  533.   Clearw 1
  534.   Print At(1,1);
  535.   Line=0
  536.   For N=1 To Cnt_il%-1
  537.     Print N;") ";Illness$(N);"  ";Il_p(N)
  538.     Inc Line
  539.     For M=1 To Il_sub(N)
  540.       Print Il(N,M,1),Il(N,M,2),Il(N,M,3)
  541.       Inc Line
  542.       If Line>19 Then
  543.         If Pk=2 Then
  544.           Do
  545.             Exit If Inkey$<>"" Or Mousek>0
  546.           Loop
  547.           @Ds_2(5,4)
  548.         Endif
  549.         Clearw 1
  550.         Line=0
  551.         Print At(1,1);
  552.       Endif
  553.     Next M
  554.   Next N
  555. Return
  556. ' -------------------------- SYMPTOM DIALOG BOX ---------------------------
  557. Procedure Dialog(Xx)
  558.   Gmx=314
  559.   Gmy=106*R%
  560.   Ex=38
  561.   Ey=65*R%
  562.   Ew=562
  563.   Eh=92*R%
  564.   @Grow_shrink_box(1)
  565.   Deffill 0,2,8
  566.   Pbox 34,43*R%,604,139*R%
  567.   Box 34,43*R%,604,139*R%
  568.   Deffill 2,2,7
  569.   Pbox 38,45*R%,600,137*R%
  570.   Box 38,45*R%,600,137*R%
  571.   Deffill 0,2,8
  572.   Pbox 50,50*R%,590,92*R%
  573.   Box 50,50*R%,590,92*R%
  574.   Pbox 53,96*R%,182,113*R%
  575.   Box 53,96*R%,182,113*R%
  576.   Pbox 57,98*R%,178,111*R%
  577.   Box 57,98*R%,178,111*R%
  578.   Pbox 53,116*R%,182,133*R%
  579.   Box 53,116*R%,182,133*R%
  580.   Pbox 57,118*R%,178,131*R%
  581.   Box 57,118*R%,178,131*R%
  582.   Pbox 445,96*R%,588,113*R%
  583.   Box 445,96*R%,588,113*R%
  584.   Pbox 449,98*R%,584,111*R%
  585.   Box 449,98*R%,584,111*R%
  586.   Pbox 445,116*R%,588,133*R%
  587.   Box 445,116*R%,588,133*R%
  588.   Pbox 449,118*R%,584,131*R%
  589.   Box 449,118*R%,584,131*R%
  590.   Pbox 239,96*R%,387,113*R%
  591.   Box 239,96*R%,387,113*R%
  592.   Pbox 243,98*R%,383,111*R%
  593.   Box 243,98*R%,383,111*R%
  594.   Pbox 239,116*R%,387,133*R%
  595.   Box 239,116*R%,387,133*R%
  596.   Pbox 243,118*R%,383,131*R%
  597.   Box 243,118*R%,383,131*R%
  598.   Graphmode 2
  599.   Deftext 1,0,0,6+F%
  600.   Text 102,108*R%,"YES"
  601.   Text 89,128*R%,"SORT OF"
  602.   Text 480,108*R%,"NOT REALLY"
  603.   Text 511,128*R%,"NO"
  604.   Text 273,108*R%,"DON'T KNOW"
  605.   ' --
  606.   Deftext 1,0,0,4
  607.   Text 164,108*R%,"4"
  608.   Text 164,128*R%,"1"
  609.   Text 575,108*R%,"6"
  610.   Text 575,128*R%,"3"
  611.   Text 372,108*R%,"5"
  612.   Text 372,128*R%,"2"
  613.   ' --
  614.   Deftext 1,1,0,8
  615.   Text 286,129*R%,"ABORT"
  616.   Deftext 1,0,0,6+F%
  617.   If Xx<>0 Then
  618.     Text 256,60*R%,"Question # "+Str$(Xx)
  619.     Text 80,73*R%,Rule$(Xx,1)
  620.     Text 80,83*R%,Rule$(Xx,2)
  621.   Else
  622.     Text 80,73*R%,"A.I. Doctor has asked all its questions."
  623.     Text 80,83*R%,"Press ABORT to get a list of the top 20 diagnoses."
  624.   Endif
  625.   Graphmode 1
  626.   ' ----------------------------- TEST FOR BUTTONS --------------------
  627.   Button_pushed!=False
  628.   Deffill 1,2,8
  629.   Do
  630.     Mouse Mx,My,Clk
  631.     A$=Inkey$
  632.     Exit If Button_pushed!
  633.     If (Clk>0 And Mx>53 And Mx<182 And My>96*R% And My<113*R%) Or A$="4"
  634.       @Ds
  635.       Pushed=3
  636.       Button_pushed!=True
  637.       Graphmode 3
  638.       Pbox 53,96*R%,182,113*R%
  639.       Pause 10
  640.       Graphmode 1
  641.     Endif
  642.     If (Clk>0 And Mx>53 And Mx<182 And My>116*R% And My<133*R%) Or A$="1"
  643.       @Ds
  644.       Pushed=1
  645.       Button_pushed!=True
  646.       Graphmode 3
  647.       Pbox 53,116*R%,182,133*R%
  648.       Pause 10
  649.       Graphmode 1
  650.     Endif
  651.     If (Clk>0 And Mx>239 And Mx<387 And My>96*R% And My<113*R%) Or A$="5"
  652.       @Ds
  653.       Pushed=0
  654.       Button_pushed!=True
  655.       Graphmode 3
  656.       Pbox 239,96*R%,387,113*R%
  657.       Pause 10
  658.       Graphmode 1
  659.     Endif
  660.     If (Clk>0 And Mx>239 And Mx<387 And My>116*R% And My<133*R%) Or A$="2"
  661.       @Ds
  662.       Pushed=-10
  663.       Button_pushed!=True
  664.       Graphmode 3
  665.       Pbox 239,116*R%,387,133*R%
  666.       Pause 10
  667.       Graphmode 1
  668.     Endif
  669.     If (Clk>0 And Mx>445 And Mx<588 And My>96*R% And My<113*R%) Or A$="6"
  670.       @Ds
  671.       Pushed=-1
  672.       Button_pushed!=True
  673.       Graphmode 3
  674.       Pbox 445,96*R%,588,113*R%
  675.       Pause 10
  676.       Graphmode 1
  677.     Endif
  678.     If (Clk>0 And Mx>445 And Mx<588 And My>116*R% And My<133*R%) Or A$="3"
  679.       @Ds
  680.       Pushed=-3
  681.       Button_pushed!=True
  682.       Graphmode 3
  683.       Pbox 445,116*R%,588,133*R%
  684.       Pause 10
  685.       Graphmode 1
  686.     Endif
  687.   Loop
  688.   Cls
  689.   @Grow_shrink_box(2)
  690. Return
  691. ' ------------------------------- CLICK SOUND -----------------------
  692. Procedure Ds
  693.   Sound 1,12,5,5
  694.   Wave 1,1,8,512,5
  695.   Wave 0,0
  696. Return
  697. ' ------------------------------ GROW/SHRINK BOX ----------------------------------
  698. Procedure Grow_shrink_box(M)
  699.   Dpoke Gintin,Gmx
  700.   Dpoke Gintin+2,Gmy
  701.   Dpoke Gintin+4,10
  702.   Dpoke Gintin+6,10
  703.   Dpoke Gintin+8,Ex
  704.   Dpoke Gintin+10,Ey
  705.   Dpoke Gintin+12,Ew
  706.   Dpoke Gintin+14,Eh
  707.   If M=1 Then
  708.     Gemsys (73)
  709.   Else
  710.     Gemsys (74)
  711.   Endif
  712. Return
  713. ' --------------------------- END OF PROGRAM GRAPHICS --------------------
  714. Procedure Closing_box
  715.   Openw 0
  716.   X=0
  717.   Y=0
  718.   X1=640
  719.   Y1=199*R%
  720.   Ds=12
  721.   Dss=8
  722.   Color 0
  723.   Do
  724.     @Ds_1(Ds,Dss)
  725.     Dec Dss
  726.     If Dss=0 Then
  727.       Dec Ds
  728.       Dss=8
  729.     Endif
  730.     Color N
  731.     Inc N
  732.     If N>3 Then
  733.       N=0
  734.     Endif
  735.     Box X,Y,X1,Y1
  736.     Dec X1
  737.     Inc X
  738.     If Even(X) Then
  739.       Dec Y1
  740.       Inc Y
  741.     Endif
  742.     Exit If Y=100*R%
  743.   Loop
  744.   Menu Kill
  745.   All_done!=True
  746. Return
  747. ' ========================== LOAD DEGAS FILE ===========================
  748. Procedure Degas
  749.   If Exist(Picname$) Then
  750.     Cls
  751.     Open "I",#1,Picname$
  752.     Temp$=Input$(36,#1)
  753.     Colr$=Mid$(Temp$,3,36)
  754.     Close #1
  755.     Void Xbios(6,L:Varptr(Colr$))
  756.     Physbase=Xbios(2)
  757.     Bload Picname$,Physbase-34
  758.   Else
  759.     Print "picture file not found"
  760.     K=Inp(2)
  761.   Endif
  762. Return
  763. ' --------------------------- DISCLAIMER DIALOG BOX --------------------
  764. Procedure Disclaim
  765.   Gmx=314
  766.   Gmy=97*R%
  767.   Ex=21
  768.   Ey=38*R%
  769.   Ew=596
  770.   Eh=128*R%
  771.   @Grow_shrink_box(1)
  772.   Deffill 0,2,8
  773.   Pbox 17,36*R%,621,168*R%
  774.   Box 17,36*R%,621,168*R%
  775.   Deffill 2,2,8
  776.   Pbox 21,38*R%,617,166*R%
  777.   Box 21,38*R%,617,166*R%
  778.   Deffill 1,2,8
  779.   Pbox 33,44*R%,605,132*R%
  780.   Box 33,44*R%,605,132*R%
  781.   Deffill 0,2,8
  782.   Pbox 265,143*R%,372,159*R%
  783.   Box 265,143*R%,372,159*R%
  784.   Deffill 1,2,8
  785.   Pbox 269,145*R%,368,157*R%
  786.   Box 269,145*R%,368,157*R%
  787.   Graphmode 2
  788.   Deftext 0,0,0,8
  789.   Text 309,155*R%,"OK"
  790.   Deftext 0,0,0,6+F%
  791.   Text 72,56*R%,"                       The A.I. Doctor"
  792.   Text 72,68*R%,"       This program is intended to be an example of artificial"
  793.   Text 72,76*R%,"intelligence and not a substitute for a physician.  If you are"
  794.   Text 72,84*R%,"sick you should see a real doctor, not an artificial one!"
  795.   Text 72,94*R%,"    This inference engine uses the Bayes' Theorem to calculate"
  796.   Text 72,102*R%,"the most likely diagnosis based on a limited knowledge base of"
  797.   Text 72,110*R%,"69  symptoms  and  89 diseases.    You can also make your own"
  798.   Text 72,118*R%,"knowledge bases about whatever topic you want."
  799.   Graphmode 1
  800.   ' ----------------------------- TEST FOR BUTTONS --------------------
  801.   Button_pushed!=False
  802.   Deffill 1,2,8
  803.   Do
  804.     Mouse Mx,My,Clk
  805.     A$=Inkey$
  806.     Exit If Button_pushed!
  807.     If (Clk>0 And Mx>265 And Mx<372 And My>143*R% And My<159*R% Or Asc(A$)=13) Then
  808.       @Ds
  809.       Pushed=1
  810.       Button_pushed!=True
  811.       Graphmode 3
  812.       Pbox 265,143*R%,372,159*R%
  813.       Pause 10
  814.       Graphmode 1
  815.     Endif
  816.   Loop
  817.   Deftext 1,0,0,6+F%
  818.   @Grow_shrink_box(2)
  819. Return
  820. ' ---------------------------- HELP DIALOG BOX ---------------------------
  821. Procedure Do_help
  822.   Gmx=328
  823.   Gmy=96.5*X%
  824.   Ex=75
  825.   Ey=23*X%
  826.   Ew=516
  827.   Eh=157*X%
  828.   @Grow_shrink_box(1)
  829.   Deffill 0,2,8
  830.   Pbox 71,21*X%,595,182*X%
  831.   Box 71,21*X%,595,182*X%
  832.   Deffill 2,2,8
  833.   Pbox 75,23*X%,591,180*X%
  834.   Box 75,23*X%,591,180*X%
  835.   Deffill 0,2,8
  836.   Pbox 280,162*X%,402,177*X%
  837.   Box 280,162*X%,402,177*X%
  838.   Deffill 1,2,8
  839.   Pbox 85,50*X%,581,155      ! New box
  840.   Pbox 284,164*X%,398,175*X%
  841.   Box 284,164*X%,398,175*X%
  842.   Deffill 0,2,8
  843.   Pbox 440,162*X%,564,177*X%
  844.   Box 440,162*X%,564,177*X%
  845.   Deffill 1,2,8
  846.   Pbox 444,164*X%,560,175*X%
  847.   Box 444,164*X%,560,175*X%
  848.   Graphmode 2
  849.   Deftext 0,4,0,12+F%
  850.   Text 297,43*X%,"HELP !"
  851.   Deftext 1,4,0,12+F%
  852.   Text 294,44*X%,"HELP !"
  853.   Deftext 0,0,0,6+F%
  854.   Graphmode 2
  855.   Text 94,62*X%,"     To  use the A.I. Doctor, first open a knowledge base."
  856.   Text 94,70*X%,"The one supplied with the program is called 'RX.DAT' and is"
  857.   Text 94,78*X%,"loaded into memory by selecting the dropdown menu item LOAD"
  858.   Text 94,86*X%,"and clicking on this file.  Once loaded into memory you will"
  859.   Text 94,94*X%,"hear  a three-tone beep.   You can now select the dropdown"
  860.   Text 94,102*X%,"menu  item  Diagnosis.   You  will  be  asked  a  series  of"
  861.   Text 94,110*X%,"questions about symptoms.   Click on the appropriate answer."
  862.   Text 94,118*X%,"You  can also select your answer using the number  key  pad,"
  863.   Text 94,126*X%,"the  small number on each button corresponds to the key  pad"
  864.   Text 94,134*X%,"number.   You keep answering questions until a diagnosis  is"
  865.   Text 94,142*X%,"made  or until you select ABORT; then you will be  presented"
  866.   Text 94,150*X%,"with a list of the top 20 diagnoses."
  867.   Text 310,172*X%,"Continue"
  868.   Text 465,172*X%,"Disclaimer"
  869.   Graphmode 1
  870.   ' ----------------------------- TEST FOR BUTTONS --------------------
  871.   Button_pushed!=False
  872.   Deffill 1,2,8
  873.   Do
  874.     Mouse Mx,My,Clk
  875.     A$=Inkey$
  876.     Exit If Button_pushed!
  877.     If (Clk>0 And Mx>436 And Mx<586 And My>161*X% And My<178*X%) Then
  878.       @Ds
  879.       Pushed=2
  880.       Button_pushed!=True
  881.       Graphmode 3
  882.       Pbox 440,162*X%,564,177*X%
  883.       Pause 10
  884.       Graphmode 1
  885.     Endif
  886.     If (Clk>0 And Mx>279 And Mx<403 And My>161*X% And My<178*X% Or Asc(A$)=13) Then
  887.       @Ds
  888.       Pushed=1
  889.       Button_pushed!=True
  890.       Graphmode 3
  891.       Pbox 279,161*X%,403,178*X%
  892.       Pause 10
  893.       Graphmode 1
  894.     Endif
  895.   Loop
  896.   Deftext 1,0,0,6
  897.   @Grow_shrink_box(2)
  898. Return
  899. ' ---------------------------------------------------------------------
  900. ' .............................. SPRITE DATA .............................
  901. Sprite_data:
  902. Data 896,0,1088,0,896,0,57614,0,16376,0,8176,0,256,0,8176,0
  903. Data 256,0,4064,0,256,0,1984,0,256,0,896,0,256,0,0,0
  904. ' ............................... MENU STRIP DATA .............................
  905. Strip_data:
  906. Data THE DOCTOR ,  About The Doctor ,--------------------,-,-,-,-,-,-,""
  907. Data OPTIONS  ,  Load File L ,  Diagnosis D ,  HELP ,----------------,  QUIT      Q ,""
  908. Data "",""
  909.